home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / Inspectors / YourWS_Inspector / Text_Console.h < prev    next >
Text File  |  1995-06-12  |  532b  |  21 lines

  1. /*
  2. ---------Text_Console.h------------
  3.  
  4. Adds a printf method to all Text instances within an application.
  5.  
  6. Thanks to Sam Streeper for posting the original version of this stuff to
  7. the world. 
  8.  
  9. You may freely copy, distribute, and reuse the code in this example.
  10. NeXT disclaims any warranty of any kind, expressed or  implied, as to its
  11. fitness for any particular use.
  12. ------------------------------------
  13. */
  14.  
  15. #import <appkit/Text.h>
  16.  
  17. @interface Text(Text_Console);
  18. - (int) printf:(const char *) format, ...;
  19. @end
  20. extern id console;
  21.